home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000270_news@columbia.edu _Tue May 2 17:07:02 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id RAA20688
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 2 May 2000 17:07:02 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA09810
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 2 May 2000 17:07:01 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id RAA01525
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 2 May 2000 17:02:09 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: jrd@cc.usu.edu (Joe Doupnik)
  13. Subject: Re: Making cursor invisible
  14. Message-ID: <S8AQOcJ8ySwW@cc.usu.edu>
  15. Date: 2 May 00 14:38:24 MDT
  16. Organization: Utah State University
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <wiWIY2i9VKeu@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) writes:
  20. > In article <8en5bh$mf4$1@newsmaster.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  21. >> In article <390f169e.837413411@news.bellglobal.com>,
  22. >> Gord Shier <shier@shorcan.com> wrote:
  23. >> : On Tue, 02 May 2000 08:21:05 +0100, Paul Williams <flo@rdel.co.uk> wrote:
  24. >> : >Gord Shier wrote:
  25. >> : >> I am using VT220 emulation, and I would like to make the
  26. >> : >> cursor invisible using the terminfo 'civis' string, which is
  27. >> : >> '\E[?25h', according to my vt220 listing.  Sadly, this doesn't work.
  28. >> : >> Is there an escape sequence that I can send to hide the cursor?
  29. >> : >
  30. >> : >You've been making the cursor visible. '\E[?25l' (that's a lowercase ell
  31. >> : >on the end) will make the cursor invisible.
  32. >> : 
  33. >> : Unfortunately, that was merely a typing mistake in my message, not in
  34. >> : what I was doing.  I have been using the 'l'.  I've tried it from
  35. >> : little scripts, as well as doing 'tput civis' and 'tput cnorm' which
  36. >> : extract the appropriate sequences from my terminfo db.  Nothing works
  37. >> : so far.
  38. >> : 
  39. >> Apparently MS-DOS Kermit does not support this escape sequence.
  40. >>
  41. >     Yes, it does support ESC [ ? 25 h and l. Please see MSK document
  42. > msvibm.vt which describes all the control sequences supported by MSK.
  43. >     Joe D.
  44.  
  45.     And to make sure I ran a test a few minutes ago and it works
  46. just fine, thankyouverymuch. "l" is invisible, "h" is visible (default).
  47. It's been there working ok for many years.
  48.     To test try a Unix host example of two little files.
  49. l.txt holds
  50.     testing ESC[?25l l-mode-set
  51. h.txt holds
  52.     testing ESC[?25h h-mode-set
  53. and then cat each in turn. Naturally ESC stands for decimal value 27, \033
  54. in octal notation for Unix.
  55.     This works no matter whether the cursor is underline or block kind.
  56. However, please be aware that MS Windows chooses to clobber things and apply
  57. its own version of what a cursor might be, so all bets are off with Windows.
  58.     Joe D.